home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / gawk-2.11 / alloca.c next >
Text File  |  1990-09-08  |  6KB  |  215 lines

  1. /*
  2.     alloca -- (mostly) portable public-domain implementation -- D A Gwyn
  3.  
  4.     last edit:    86/05/30    rms
  5.        include config.h, since on VMS it renames some symbols.
  6.        Use xmalloc instead of malloc.
  7.  
  8.     This implementation of the PWB library alloca() function,
  9.     which is used to allocate space off the run-time stack so
  10.     that it is automatically reclaimed upon procedure exit, 
  11.     was inspired by discussions with J. Q. Johnson of Cornell.
  12.  
  13.     It should work under any C implementation that uses an
  14.     actual procedure stack (as opposed to a linked list of
  15.     frames).  There are some preprocessor constants that can
  16.     be defined when compiling for your specific system, for
  17.     improved efficiency; however, the defaults should be okay.
  18.  
  19.     The general concept of this implementation is to keep
  20.     track of all alloca()-allocated blocks, and reclaim any
  21.     that are found to be deeper in the stack than the current
  22.     invocation.  This heuristic does not reclaim storage as
  23.     soon as it becomes invalid, but it will do so eventually.
  24.  
  25.     As a special case, alloca(0) reclaims storage without
  26.     allocating any.  It is a good idea to use alloca(0) in
  27.     your main control loop, etc. to force garbage collection.
  28. */
  29. #ifndef lint
  30. static char    SCCSid[] = "@(#)alloca.c    1.1";    /* for the "what" utility */
  31. #endif
  32.  
  33. #ifdef THINK_C
  34. #include <stdio.h>
  35. #include <stdlib.h>
  36. #include <string.h>
  37. #include "config.h"
  38. #endif /* THINK_C */
  39.  
  40. #ifdef emacs
  41. #if defined(static)        /* THINK_C barfs on "#ifdef static" */
  42. /* actually, only want this if static is defined as ""
  43.    -- this is for usg, in which emacs must undefine static
  44.    in order to make unexec workable
  45.    */
  46. #ifndef STACK_DIRECTION
  47. you
  48. lose
  49. -- must know STACK_DIRECTION at compile-time
  50. #endif /* STACK_DIRECTION undefined */
  51. #endif /* static */        /* THINK_C barfs on "#endif static" */
  52. #endif emacs
  53.  
  54.  
  55. #ifdef X3J11
  56. typedef void    *pointer;        /* generic pointer type */
  57. #else
  58. typedef char    *pointer;        /* generic pointer type */
  59. #endif
  60.  
  61. #ifndef NULL
  62. #define    NULL    0            /* null pointer constant */
  63. #endif
  64.  
  65. /* Protoypes grabbed from file
  66. ** "alloca.c"
  67. ** 1990 Sep 5 (Wed) 20:40:48
  68. */
  69.  
  70. void         
  71. find_stack_direction(void);        
  72.  
  73. pointer         
  74. alloca(unsigned size);        /* # bytes to allocate */
  75.  
  76. pointer         
  77. xmalloc(unsigned int n);        
  78.  
  79.  
  80. extern void    free();
  81.  
  82. /*
  83.     Define STACK_DIRECTION if you know the direction of stack
  84.     growth for your system; otherwise it will be automatically
  85.     deduced at run-time.
  86.  
  87.     STACK_DIRECTION > 0 => grows toward higher addresses
  88.     STACK_DIRECTION < 0 => grows toward lower addresses
  89.     STACK_DIRECTION = 0 => direction of growth unknown
  90. */
  91.  
  92. #ifndef STACK_DIRECTION
  93. #define    STACK_DIRECTION    0        /* direction unknown */
  94. #endif
  95.  
  96. #if STACK_DIRECTION != 0
  97.  
  98. #define    STACK_DIR    STACK_DIRECTION    /* known at compile-time */
  99.  
  100. #else    /* STACK_DIRECTION == 0; need run-time code */
  101.  
  102. static int    stack_dir;        /* 1 or -1 once known */
  103. #define    STACK_DIR    stack_dir
  104.  
  105. static void
  106. find_stack_direction (/* void */)
  107. {
  108.   static char    *addr = NULL;    /* address of first
  109.                    `dummy', once known */
  110.   auto char    dummy;        /* to get stack address */
  111.  
  112.   if (addr == NULL)
  113.     {                /* initial entry */
  114.       addr = &dummy;
  115.  
  116.       find_stack_direction ();    /* recurse once */
  117.     }
  118.   else                /* second entry */
  119.     if (&dummy > addr)
  120.       stack_dir = 1;        /* stack grew upward */
  121.     else
  122.       stack_dir = -1;        /* stack grew downward */
  123. }
  124.  
  125. #endif    /* STACK_DIRECTION == 0 */
  126.  
  127. /*
  128.     An "alloca header" is used to:
  129.     (a) chain together all alloca()ed blocks;
  130.     (b) keep track of stack depth.
  131.  
  132.     It is very important that sizeof(header) agree with malloc()
  133.     alignment chunk size.  The following default should work okay.
  134. */
  135.  
  136. #ifndef    ALIGN_SIZE
  137. #define    ALIGN_SIZE    sizeof(double)
  138. #endif
  139.  
  140. typedef union hdr
  141. {
  142.   char    align[ALIGN_SIZE];    /* to force sizeof(header) */
  143.   struct
  144.     {
  145.       union hdr *next;        /* for chaining headers */
  146.       char *deep;        /* for stack depth measure */
  147.     } h;
  148. } header;
  149.  
  150. /*
  151.     alloca( size ) returns a pointer to at least `size' bytes of
  152.     storage which will be automatically reclaimed upon exit from
  153.     the procedure that called alloca().  Originally, this space
  154.     was supposed to be taken from the current stack frame of the
  155.     caller, but that method cannot be made to work for some
  156.     implementations of C, for example under Gould's UTX/32.
  157. */
  158.  
  159. static header *last_alloca_header = NULL; /* -> last alloca header */
  160.  
  161. pointer
  162. alloca (size)            /* returns pointer to storage */
  163.      unsigned    size;        /* # bytes to allocate */
  164. {
  165.   auto char    probe;        /* probes stack depth: */
  166.   register char    *depth = &probe;
  167.  
  168. #if STACK_DIRECTION == 0
  169.   if (STACK_DIR == 0)        /* unknown growth direction */
  170.     find_stack_direction ();
  171. #endif
  172.  
  173.                 /* Reclaim garbage, defined as all alloca()ed storage that
  174.                    was allocated from deeper in the stack than currently. */
  175.  
  176.   {
  177.     register header    *hp;    /* traverses linked list */
  178.  
  179.     for (hp = last_alloca_header; hp != NULL;)
  180.       if (STACK_DIR > 0 && hp->h.deep > depth
  181.       || STACK_DIR < 0 && hp->h.deep < depth)
  182.     {
  183.       register header    *np = hp->h.next;
  184.  
  185.       free ((pointer) hp);    /* collect garbage */
  186.  
  187.       hp = np;        /* -> next header */
  188.     }
  189.       else
  190.     break;            /* rest are not deeper */
  191.  
  192.     last_alloca_header = hp;    /* -> last valid storage */
  193.   }
  194.  
  195.   if (size == 0)
  196.     return NULL;        /* no allocation required */
  197.  
  198.   /* Allocate combined header + user data storage. */
  199.  
  200.   {
  201.     register pointer    new = xmalloc (sizeof (header) + size);
  202.     /* address of header */
  203.  
  204.     ((header *)new)->h.next = last_alloca_header;
  205.     ((header *)new)->h.deep = depth;
  206.  
  207.     last_alloca_header = (header *)new;
  208.  
  209.     /* User storage begins just after header. */
  210.  
  211.     return (pointer)((char *)new + sizeof(header));
  212.   }
  213. }
  214.  
  215.